分享至
今天要提的是Map,Map是由key、Value所構成
relation := make(map[string]int)
Map內的元素我們可以透過map[K]來取得它的對應值
若要做刪除則可以透過內建的delete函式
delete(relation, key)
IT邦幫忙